type github.com/jackc/pgx/v5.batchResults
18 uses
github.com/jackc/pgx/v5 (current package)
batch.go#L118: type batchResults struct {
batch.go#L130: func (br *batchResults) Exec() (pgconn.CommandTag, error) {
batch.go#L174: func (br *batchResults) Query() (Rows, error) {
batch.go#L215: func (br *batchResults) QueryRow() Row {
batch.go#L222: func (br *batchResults) Close() error {
batch.go#L264: func (br *batchResults) earlyError() error {
batch.go#L268: func (br *batchResults) nextQueryAndArgs() (query string, args []any, ok bool) {
conn.go#L958: return &batchResults{ctx: ctx, conn: c, err: err}
conn.go#L982: return &batchResults{ctx: ctx, conn: c, err: fmt.Errorf("rewrite query failed: %w", err)}
conn.go#L1017: func (c *Conn) sendBatchQueryExecModeSimpleProtocol(ctx context.Context, b *Batch) *batchResults {
conn.go#L1025: return &batchResults{ctx: ctx, conn: c, err: err}
conn.go#L1030: return &batchResults{
conn.go#L1039: func (c *Conn) sendBatchQueryExecModeExec(ctx context.Context, b *Batch) *batchResults {
conn.go#L1047: return &batchResults{ctx: ctx, conn: c, err: err}
conn.go#L1054: return &batchResults{ctx: ctx, conn: c, err: err}
conn.go#L1064: return &batchResults{
tx.go#L272: return &batchResults{err: ErrTxClosed}
tx.go#L374: return &batchResults{err: ErrTxClosed}